home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Ebooks / Thinking in C++ V2 / C12 / Borland.makefile < prev    next >
Encoding:
Makefile  |  2000-05-25  |  3.2 KB  |  152 lines

  1. # From Thinking in C++, 2nd Edition
  2. # At http://www.BruceEckel.com
  3. # (c) Bruce Eckel 1999
  4. # Copyright notice in Copyright.txt
  5. # Automatically-generated MAKEFILE 
  6. # For examples in directory C12
  7. # using the Borland compiler
  8. # Note: does not make files that will 
  9. # not compile with this compiler
  10. # Invoke with: make -f Borland.makefile
  11.  
  12. # Note: this requires the upgrade from
  13. # www.Borland.com for successful compilation!
  14. CPP = Bcc32
  15. CPPFLAGS = -w-inl -w-csu -wnak
  16. OFLAG = -e
  17. .SUFFIXES : .obj .cpp .c
  18. .cpp.obj :
  19.     $(CPP) $(CPPFLAGS) -c $<
  20. .c.obj :
  21.     $(CPP) $(CPPFLAGS) -c $<
  22.  
  23. all: \
  24.     Opover.exe \
  25.     Unary.exe \
  26.     Binary.exe \
  27.     Comma.exe \
  28.     Smartp.exe \
  29.     Iosop.exe \
  30.     FeeFi.exe \
  31.     Simpcopy.exe \
  32.     Copymem.exe \
  33.     Refcount.exe \
  34.     RefcountTrace.exe \
  35.     Autoeq.exe \
  36.     Autocnst.exe \
  37.     Opconv.exe \
  38.     Reflex.exe \
  39.     Strings1.exe \
  40.     Strings2.exe \
  41.     Ambig.exe \
  42.     Fanout.exe \
  43.     FeeFi2.exe 
  44.  
  45. test: all 
  46.     Opover.exe  
  47.     Unary.exe  
  48.     Binary.exe  
  49.     Comma.exe  
  50.     Smartp.exe  
  51.     Iosop.exe  
  52.     FeeFi.exe  
  53.     Simpcopy.exe  
  54.     Copymem.exe  
  55.     Refcount.exe  
  56.     RefcountTrace.exe  
  57.     Autoeq.exe  
  58.     Autocnst.exe  
  59.     Opconv.exe  
  60.     Reflex.exe  
  61.     Strings1.exe  
  62.     Strings2.exe  
  63.     Ambig.exe  
  64.     Fanout.exe  
  65.     FeeFi2.exe  
  66.  
  67. bugs: 
  68.     @echo No compiler bugs in this directory!
  69.  
  70. Opover.exe: Opover.obj 
  71.     $(CPP) $(OFLAG)Opover.exe Opover.obj 
  72.  
  73. Unary.exe: Unary.obj 
  74.     $(CPP) $(OFLAG)Unary.exe Unary.obj 
  75.  
  76. Binary.exe: Binary.obj 
  77.     $(CPP) $(OFLAG)Binary.exe Binary.obj 
  78.  
  79. Comma.exe: Comma.obj 
  80.     $(CPP) $(OFLAG)Comma.exe Comma.obj 
  81.  
  82. Smartp.exe: Smartp.obj 
  83.     $(CPP) $(OFLAG)Smartp.exe Smartp.obj 
  84.  
  85. Iosop.exe: Iosop.obj 
  86.     $(CPP) $(OFLAG)Iosop.exe Iosop.obj 
  87.  
  88. FeeFi.exe: FeeFi.obj 
  89.     $(CPP) $(OFLAG)FeeFi.exe FeeFi.obj 
  90.  
  91. Simpcopy.exe: Simpcopy.obj 
  92.     $(CPP) $(OFLAG)Simpcopy.exe Simpcopy.obj 
  93.  
  94. Copymem.exe: Copymem.obj 
  95.     $(CPP) $(OFLAG)Copymem.exe Copymem.obj 
  96.  
  97. Refcount.exe: Refcount.obj 
  98.     $(CPP) $(OFLAG)Refcount.exe Refcount.obj 
  99.  
  100. RefcountTrace.exe: RefcountTrace.obj 
  101.     $(CPP) $(OFLAG)RefcountTrace.exe RefcountTrace.obj 
  102.  
  103. Autoeq.exe: Autoeq.obj 
  104.     $(CPP) $(OFLAG)Autoeq.exe Autoeq.obj 
  105.  
  106. Autocnst.exe: Autocnst.obj 
  107.     $(CPP) $(OFLAG)Autocnst.exe Autocnst.obj 
  108.  
  109. Opconv.exe: Opconv.obj 
  110.     $(CPP) $(OFLAG)Opconv.exe Opconv.obj 
  111.  
  112. Reflex.exe: Reflex.obj 
  113.     $(CPP) $(OFLAG)Reflex.exe Reflex.obj 
  114.  
  115. Strings1.exe: Strings1.obj 
  116.     $(CPP) $(OFLAG)Strings1.exe Strings1.obj 
  117.  
  118. Strings2.exe: Strings2.obj 
  119.     $(CPP) $(OFLAG)Strings2.exe Strings2.obj 
  120.  
  121. Ambig.exe: Ambig.obj 
  122.     $(CPP) $(OFLAG)Ambig.exe Ambig.obj 
  123.  
  124. Fanout.exe: Fanout.obj 
  125.     $(CPP) $(OFLAG)Fanout.exe Fanout.obj 
  126.  
  127. FeeFi2.exe: FeeFi2.obj 
  128.     $(CPP) $(OFLAG)FeeFi2.exe FeeFi2.obj 
  129.  
  130.  
  131. Opover.obj: Opover.cpp 
  132. Unary.obj: Unary.cpp 
  133. Binary.obj: Binary.cpp ..\require.h 
  134. Comma.obj: Comma.cpp 
  135. Smartp.obj: Smartp.cpp 
  136. Iosop.obj: Iosop.cpp ..\require.h 
  137. FeeFi.obj: FeeFi.cpp 
  138. Simpcopy.obj: Simpcopy.cpp 
  139. Copymem.obj: Copymem.cpp ..\require.h 
  140. Refcount.obj: Refcount.cpp ..\require.h 
  141. RefcountTrace.obj: RefcountTrace.cpp ..\require.h 
  142. Autoeq.obj: Autoeq.cpp 
  143. Autocnst.obj: Autocnst.cpp 
  144. Opconv.obj: Opconv.cpp 
  145. Reflex.obj: Reflex.cpp 
  146. Strings1.obj: Strings1.cpp ..\require.h 
  147. Strings2.obj: Strings2.cpp ..\require.h 
  148. Ambig.obj: Ambig.cpp 
  149. Fanout.obj: Fanout.cpp 
  150. FeeFi2.obj: FeeFi2.cpp 
  151.  
  152.